home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 7_2.lha / 7_2 / makefile < prev    next >
Makefile  |  1993-08-08  |  427b  |  22 lines

  1. C= CC -I. -I../shape -I../../CC
  2. HP= ../shape
  3.  
  4. ll: tst
  5.  
  6. BJ= nscreen.o $(SHP)/shape.o $(SHP)/myshape.o $(SHP)/slist.o $(SHP)/put_line.o $(SHP)/main.o
  7.  
  8. st: $(OBJ)
  9. $(CC) $(OBJ) -o tst -lcurses
  10.  
  11. screen.o: nscreen.c $(SHP)/screen.h 7_2a.c 7_2b.c 7_2c.c 7_2d.c
  12. $(CC) $(CFLAGS) -c nscreen.c
  13.  
  14. MP= tst.cmp
  15. UT= tst.out
  16.  
  17. st.out: tst ;    TERM=ansi LINES=24 COLUMNS=80 tst > tst.out
  18.  
  19. est: all $(CMP) $(OUT)
  20. cmp tst.out tst.cmp
  21. @echo test done
  22.